LabelPosition Enumeration
Represents where data labels are placed.
Namespace: Independentsoft.Office.Odf.StylesAssembly: Independentsoft.Office (in Independentsoft.Office.dll) Version: 3.0.460.1+37fe42d8e65847775742df0a70fdb403ab6fa65f
public enum LabelPosition
Public Enumeration LabelPosition
| AvoidOverlap | 0 |
An algorithm should be used that tries to place the labels without overlapping each other.
|
| Bottom | 1 |
The data label is placed below the data point.
|
| BottomLeft | 2 |
The data label is placed to the bottom left of the data point.
|
| BottomRight | 3 |
The data label is placed to the bottom right of the data point.
|
| Center | 4 |
The data label is centered on the data point.
|
| Inside | 5 |
The data label is placed inside the data point ( for pie charts the label is placed inside the piece on the bisecting line aligned to the outer radius, for bar charts the label is inside the bar aligned to that end that is given by the data points value, for polar charts the label is placed on that side of the data point that points to the polar charts center ).
|
| Left | 6 |
The data label is placed left of the data point.
|
| NearOrigin | 7 |
The data label is placed inside the data point on that side that is near to the origin - where the origin is the beginning of the bar in a bar chart or the base line in an area chart ( for bar charts the label is placed inside the bar like with value inside, but aligned to the opposite end of the bar ).
|
| Outside | 8 |
The data label is placed outside the data point ( for pie charts the label is placed outside the circle aligned to the outer radius, for bar charts the label is outside the bar aligned to that end that is given by the data points value, for polar charts the label is placed on that side of the data point that points away from the polar charts center ).
|
| Right | 9 |
The data label is placed right of the data point.
|
| Top | 10 |
The data label is placed on top of the data point.
|
| TopLeft | 11 |
The data label is placed to the top left of the data point.
|
| TopRight | 12 |
The data label is placed to the top right of the data point.
|
| None | 13 |
None.
|